Python: Difference between revisions

From Sasara
Jump to navigationJump to search
Created page with "'''Python''' is an interpreted scripting language that's frustrating to install packages for, especially in a cross platform way. Use pkgsrc if you can. ==Running a venv== python3 -m venv $ENVIRONMENT_NAME source $ENVIRONMENT_NAME/bin/activate pip install $PACKAGE Category:Tech"
 
(No difference)

Latest revision as of 23:40, 5 November 2025

Python is an interpreted scripting language that's frustrating to install packages for, especially in a cross platform way. Use pkgsrc if you can.

Running a venv

python3 -m venv $ENVIRONMENT_NAME
source $ENVIRONMENT_NAME/bin/activate
pip install $PACKAGE