Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ERROR: × This environment is externally managed fixed
- ##################################################################
- Join our telegram channel for more : https://t.me/LinuxClassesEFXTv
- ##################################################################
- 1. Create a Virtual Environment Python
- A virtual environment allows you to install Python packages locally without affecting your system-wide Python environment. Here's how you can set one up:
- # Install Virtual Environment Python
- sudo apt install python3-venv
- python3 -m venv myenv
- source myenv/bin/activate
- # To deactivate
- deactivate
Advertisement
Add Comment
Please, Sign In to add comment