Speaker
Tzu-ping Chung
Material
Note
- interpreter → tools → dependencies → application
Dependencies
- Try Pipenv
Tools
- pipsi can be an option. But, it has not been updated for a while.
mkdir -p ~/.local/bin ~/.local/venvs
python3 -m venv ~/.local/venvs/pipenv
~/.local/venvs/pipenv/bin/pip install pipenv
ln -s ~/.local/venvs/pipenv/bin/pipenv ~/.local/bin
pipenv --version
- Rule of Thumb
- Do not use
sudo
. Ever. - Always use virtual environements
- Use
--user
when desperate
- Do not use
Interpreter
- Linux
- Ubuntu: use "deadsnakes" PPA
- macOS
- Do not use System Python, Homebrew Python
- Must compile your own
- Windows
- Just download it from python.org
- or use pythonup