Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adwaith-rajesh/pip-venv-sure
A quick and easy way to make sure that you always install packages to virtualenv.
https://github.com/adwaith-rajesh/pip-venv-sure
cli python venv-python
Last synced: 1 day ago
JSON representation
A quick and easy way to make sure that you always install packages to virtualenv.
- Host: GitHub
- URL: https://github.com/adwaith-rajesh/pip-venv-sure
- Owner: Adwaith-Rajesh
- License: mit
- Created: 2021-11-03T11:17:18.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-03T15:33:03.000Z (about 3 years ago)
- Last Synced: 2024-11-09T19:49:15.586Z (6 days ago)
- Topics: cli, python, venv-python
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pip Venv Sure
Prevents the installation of packages into you base installation of python
## usage and setup
```commandline
pip3 install pip-venv-sure
alias pip3=pip-venv-sure
```## motivation
I don't like installing packages directly into my base installation. But as a mere human being I sometimes forget to activate my venv, so this prevent these kinds to accidents from happening.
### installing packages to base installation.
Some times there is a need to install package directly to the base installation of python in that case you can use the following command.
```commandline
pip3 install any-template --allow-no-venv
```