Python: Difference between revisions

From Smithnet Wiki
Jump to navigation Jump to search
Line 18: Line 18:
  pip install --upgrade pip
  pip install --upgrade pip
  python -m pip install pyinstaller
  python -m pip install pyinstaller
python -m pip install requests==2.6.0


Deactivate an env:
Deactivate an env:

Revision as of 16:18, 5 April 2024

PIP

On Windows, start pip with:

py -m pip

Virtual Environments

Create a virtual environment:

python -m venv py-env/demo

Activate a virtual environment on Windows:

py-env\demo\Scripts\activate

or Linux:

. py-env/demo/bin/activate

Install within a venv:

pip install --upgrade pip
python -m pip install pyinstaller
python -m pip install requests==2.6.0

Deactivate an env:

deactivate

Python Installer

pip install pyinstaller

Add C:\Users\<user>\AppData\Roaming\Python\Python312\Scripts to PATH:

pyinstaller --onefile file.py

and the resultant executable will be in the dist directory.