Its just a makeshift project. Learning how to use Git, Screen, Virtualenv.
- Use pyenv. Follow this tutorial : https://weknowinc.com/blog/running-multiple-python-versions-mac-osx
- Install pyenv -
brew install pyenv
- Check available versions -
pyenv install -l
- Install the version you require -
pyenv install 3.6.4
It gets installed in a path like this : /Users/<user_name>/.pyenv/versions/3.7.2 - To get a list of all Python version available to be activated, execute the following command -
pyenv versions
- If there is a project that requires a legacy version like Python 2.7.14, you need to go to the project’s folder and execute this command inside the folder -
pyenv local 2.7.14
Follow this tutorial : https://github.com/pyenv/pyenv