Skip to content

Instantly share code, notes, and snippets.

@souhaiebtar
Last active May 13, 2024 10:53
Show Gist options
  • Save souhaiebtar/e89f17df657857312be225c800f2d894 to your computer and use it in GitHub Desktop.
Save souhaiebtar/e89f17df657857312be225c800f2d894 to your computer and use it in GitHub Desktop.
[python cheat] python cheatsheet #python #cheatsheet
  • create a virtual environment python -m venv openCv

  • install python package that are in requirements.txt pip install -r requirements

  • install python package through a proxy (replace http://127.0.0.1:9000 by your proxy address) pip install --proxy="http://127.0.0.1:9000" install -r requirements.txt

  • write all python package in a file requirements.txt pip freeze > requirements.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment