https://github.com/skrevolve/sql_bulk_insert
https://github.com/skrevolve/sql_bulk_insert
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skrevolve/sql_bulk_insert
- Owner: skrevolve
- Created: 2023-02-24T04:12:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T07:29:01.000Z (over 3 years ago)
- Last Synced: 2024-12-28T11:19:43.298Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bulk_insert
## install python
>
# 👇️ in a virtual environment or using Python 2
$ pip install pyodbc
# 👇️ for python 3 (could also be pip3.10 depending on your version)
$ pip3 install pyodbc
# 👇️ if you get permissions error
$ sudo pip3 install pyodbc
$ pip install pyodbc --user
# 👇️ if you don't have pip in your PATH environment variable
$ python -m pip install pyodbc
# 👇️ for python 3 (could also be pip3.10 depending on your version)
$ python3 -m pip install pyodbc
# 👇️ using py alias (Windows)
$ py -m pip install pyodbc
# 👇️ for Anaconda
$ conda install -c anaconda pyodbc
# 👇️ for Jupyter Notebook
$ !pip install pyodbc
## zsh config
>
# 👇️ search python path
$ which python3
>
# 👇️ insert -> alias python="which python3 result path"
$ vi ~/.zshrc
>
# 👇️ reset zshrc
$ source ~/.zshrc
>
# 👇️ check version
$ python --version