Python & pip

292 commands

python3 script.pypython3 -c 'print(1+1)'python3 -m http.server 8000python3 -m json.tool file.jsonpython3 -i script.pypip install requestspip install requests==2.28.0pip install -r requirements.txtpip uninstall requestspip listpip list --outdatedpip freezepip freeze > requirements.txtpip show requestspip install --upgrade pippython3 -m venv venvsource venv/bin/activatedeactivatevirtualenv venvpip install -e .python3 -m pip install packageconda create -n myenv python=3.11conda activate myenvconda install numpyconda env listpython3 --versionpython3 -c 'print("hello")'python3 -m module_namepython3 -u script.pypython3 -O script.pypython3 -OO script.pypython3 -B script.pypython3 -W ignore script.pypython3 -W error script.pypython3 -X utf8 script.pypython3 -X dev script.pypython3 -X tracemalloc script.pypython3 -m pdb script.pypython3 -m timeit 'x = [i for i in range(100)]'python3 -m http.server 8080python3 -m venv .venvpython3 -m py_compile script.pypython3 -m compileall .python3 -m sitepython3 -m zipapp myapp/ -o myapp.pyzpip install packagepip install 'package==1.2.3'pip install 'package>=1.0,<2.0'pip install --upgrade packagepip install --no-deps packagepip install --pre packagepip install --index-url https://pypi.org/simple/ packagepip install --extra-index-url URL packagepip install --find-links /local/dir packagepip install --no-cache-dir packagepip install --user packagepip install --target ./vendor packagepip uninstall packagepip uninstall -y -r requirements.txtpip list --format=freezepip show packagepip checkpip search termpip download package -d ./wheelspip wheel package -w ./wheelspip hash ./wheel.whlpip config listpip config set global.index-url URLpip cache listpip cache purgepip debugsource .venv/bin/activatepython3 -m venv --upgrade .venvpython3 -m venv --without-pip .venvpython3 -m venv --copies .venvpython3 -m venv --system-site-packages .venvvirtualenv .venvvirtualenv --python=python3.11 .venvpyenv install --listpyenv install 3.12.2pyenv uninstall 3.11.0pyenv versionspyenv versionpyenv global 3.12.2pyenv local 3.11.0pyenv shell 3.10.0pyenv which pythonpyenv rehashpyenv updatepyenv doctorpyenv exec python script.pyuv --versionuv init myprojectuv add requestsuv add 'django>=4.2'uv add --dev pytestuv remove requestsuv syncuv sync --frozenuv lockuv lock --upgradeuv run python script.pyuv run pytestuv builduv publishuv pip install packageuv pip install -r requirements.txtuv pip listuv pip freezeuv pip compile requirements.in -o requirements.txtuv pip sync requirements.txtuv python install 3.12uv python listuv python pin 3.12uv tool install ruffuv tool run ruff check .uv tool listuv tool upgrade ruffuv tool uninstall ruffuv cache cleanuv cache diruv venv .venvuv venv --python 3.11 .venvpoetry new myprojectpoetry initpoetry installpoetry install --no-rootpoetry install --only mainpoetry add requestspoetry add 'flask>=3.0'poetry add --group dev pytestpoetry remove requestspoetry updatepoetry update requestspoetry lockpoetry lock --no-updatepoetry showpoetry show --treepoetry show --outdatedpoetry run python script.pypoetry shellpoetry buildpoetry publishpoetry publish --repository testpypipoetry env infopoetry env listpoetry env use python3.12poetry env remove python3.11poetry config --listpoetry config virtualenvs.in-project truepoetry config pypi-token.pypi TOKENpoetry checkpoetry export -f requirements.txt -o requirements.txt --without-hashespoetry version patchpoetry version minorpoetry self updatepytestpytest tests/pytest tests/test_api.pypytest tests/test_api.py::TestClass::test_methodpytest -vpytest -vvpytest -spytest -xpytest --maxfail=3pytest -k 'auth'pytest -k 'not slow'pytest -m smokepytest --lfpytest --ffpytest -n autopytest --cov=src --cov-report=term-missingpytest --cov=src --cov-report=htmlpytest --tb=shortpytest --tb=nopytest --timeout=30pytest --ignore=vendor/pytest --collect-onlypytest --durations=10pytest --log-cli-level=DEBUGpytest -p no:warningspytest --cache-clearpytest --fixturespytest --co -qblack .black src/ tests/black script.pyblack --check .black --diff .black --line-length 100 .black --target-version py311 .black --quiet .black --fast .ruff check .ruff check --fix .ruff check --select E,W .ruff check --ignore E501 .ruff check --extend-select ALL .ruff check --watch .ruff check --output-format=json .ruff format .ruff format --check .ruff format --diff .ruff rule E501ruff linterruff cleanruff configruff check --statistics .mypy src/mypy script.pymypy --strict .mypy --ignore-missing-imports .mypy --disallow-untyped-defs .mypy --check-untyped-defs .mypy --python-version 3.11 .mypy --show-error-codes .mypy --html-report mypy-report/ .mypy --install-typesmypy --no-error-summary .mypy --exclude tests/ .mypy --cache-fine-grained .pylint src/pylint script.pypylint --disable=C0114 src/pylint --enable=all src/pylint --errors-only src/pylint --output-format=json src/pylint --generate-rcfile > .pylintrcpylint --rcfile=.pylintrc src/pylint --score=no src/flake8 .flake8 --max-line-length=100 .flake8 --ignore=E501,W503 .flake8 --select=E,W .flake8 --count .flake8 --statistics .flake8 --show-source .flake8 --per-file-ignores='tests/*:S101' .flake8 --generate-default-configisort .isort --check-only .isort --diff .isort --profile black .isort --atomic .isort --skip vendor/ .isort --force-sort-within-sections .pipx install ruffpipx install --python python3.11 toolpipx upgrade ruffpipx upgrade-allpipx uninstall ruffpipx listpipx run ruff check .pipx inject tool extra-packagepipx reinstall-allpipx ensurepathtwine upload dist/*twine upload --repository testpypi dist/*twine upload --skip-existing dist/*twine check dist/*twine register dist/package.tar.gzcoverage run -m pytestcoverage run --source=src -m pytestcoverage run --omit='tests/*' -m pytestcoverage reportcoverage report --show-missingcoverage report --fail-under=80coverage htmlcoverage xmlcoverage jsoncoverage erasecoverage combinebandit -r src/bandit -r . -f json -o bandit-report.jsonbandit -ll src/bandit --skip B101 src/bandit -t B601,B602 src/pre-commit installpre-commit run --all-filespre-commit run black --all-filespre-commit autoupdatepre-commit cleanpre-commit gcpre-commit uninstallpre-commit sample-configpre-commit validate-config .pre-commit-config.yamlpre-commit try-repo https://github.com/org/repopython3 -m pydoc jsonpython3 -m pydoc -bpython3 -m pydoc -p 8080python3 -m pydoc -w jsonpython3 -m pydoc -k 'compress'
Search all 7,657 commands instead.