If you have multiple Python versions installed on your device and want to make use of a certain version of Python for a project, then you can create a virtual environment for it by executing the virtualenv command in the console/Terminal with the path to the Python version that wants to make use of.
Example:
virtualenv --python="/opt/homebrew/bin/python3" "/Users/c2ctech/Desktop/proj1/"
This will create the Python project structure with the specific version of Python.
home = /opt/homebrew/opt/python@3.11/bin
implementation = CPython
version_info = 3.11.4.final.0
virtualenv = 20.23.1
include-system-site-packages = false
base-prefix = /opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11
base-exec-prefix = /opt/homebrew/opt/python@3.11/Frameworks/Python.framework/Versions/3.11
base-executable = /opt/homebrew/opt/python@3.11/bin/python3.11
Note: Make sure you have virtualenv module installed using pip or else you will get an error "zsh: command not found: virtualenv"
Now let's make use of another Python version this time.
virtualenv --python="/opt/homebrew/bin/python3.9" "/Users/c2ctech/Desktop/proj2/"
-rwxr-xr-x@ 1 c2ctech staff 244 Jul 6 15:55 pip
-rwxr-xr-x@ 1 c2ctech staff 244 Jul 6 15:55 pip-3.9
-rwxr-xr-x@ 1 c2ctech staff 244 Jul 6 15:55 pip3
-rwxr-xr-x@ 1 c2ctech staff 244 Jul 6 15:55 pip3.9
lrwxr-xr-x@ 1 c2ctech staff 42 Jul 6 15:55 python -> /opt/homebrew/opt/python@3.9/bin/python3.9
lrwxr-xr-x@ 1 c2ctech staff 6 Jul 6 15:55 python3 -> python
lrwxr-xr-x@ 1 c2ctech staff 6 Jul 6 15:55 python3.9 -> python
-rwxr-xr-x@ 1 c2ctech staff 231 Jul 6 15:55 wheel
-rwxr-xr-x@ 1 c2ctech staff 231 Jul 6 15:55 wheel-3.9
-rwxr-xr-x@ 1 c2ctech staff 231 Jul 6 15:55 wheel3
-rwxr-xr-x@ 1 c2ctech staff 231 Jul 6 15:55 wheel3.9

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- Java: Collect Stream as ArrayList or LinkedList - Java
- Base 64 Encoding Decoding In Notepad++ - NotepadPlusPlus
- Easy Steps to Upgrade iPhone to the new iOS 16 - HowTos
- How to install Node using Brew on Mac - MacOS
- [Eclipse] Enable or Disable print margin line - Eclipse
- JDK Location in Android Studio - Android-Studio
- How to Stop Photos App from auto loading when device connected to the Mac - Mac-OS-X
- pwd Command - Print Working Directory - Linux