Run pip to install packages from the Python interactive shell aka REPL.
Project description
Pip From REPL
Run pip to install packages from the Python interactive shell aka REPL.
The benefit of pipfromrepl is that the user doesn't need to know how to navigate the command line or have their PATH environment variables set up. If multiple versions of Python are installed, pipfromrepl uses the pip module associated with the currently running interactive shell. The goal of pipfromrepl is to reduce the number of steps that students and beginners need to take to get Python packages installed on their computer.
Installation
To install pipfromrepl from the REPL, copy and paste the following into the REPL:
import subprocess, sys; subprocess.run([sys.executable, '-m', 'pip', 'install', 'pipfromrepl'])
Pipfromrepl works on Python 2.7 and Python 3.4+ (the versions of Python that come with the pip module.)
To install with pip from the command line, run:
pip install pipfromrepl
Quickstart Guide
>>> import pipfromrepl
>>> pipfromrepl.list()
Package Version Editable project location
----------- ------- -------------------------
pip 22.3.1
pipfromrepl 0.1.0 C:\github\pipfromrepl
setuptools 65.5.1
wheel 0.37.1
>>> pipfromrepl.install('pymsgbox')
Collecting pymsgbox
Using cached PyMsgBox-1.0.9-py3-none-any.whl
Installing collected packages: pymsgbox
Successfully installed pymsgbox-1.0.9
>>> pipfromrepl.list()
Package Version Editable project location
----------- ------- -------------------------
pip 22.3.1
pipfromrepl 0.1.0 C:\github\pipfromrepl
PyMsgBox 1.0.9
setuptools 65.5.1
wheel 0.37.1
>>> pipfromrepl.uninstall('pymsgbox')
Found existing installation: PyMsgBox 1.0.9
Uninstalling PyMsgBox-1.0.9:
Would remove:
c:\users\al\.virtualenvs\pipfromrepl-fxbqt5ki\lib\site-packages\pymsgbox-1.0.9.dist-info\*
c:\users\al\.virtualenvs\pipfromrepl-fxbqt5ki\lib\site-packages\pymsgbox\*
Proceed (Y/n)? Successfully uninstalled PyMsgBox-1.0.9
The uninstall()
function has a confirm
keyword argument you can set to True
to force the user to manually enter Y to proceed.
The user_install()
function passes the '--user'
argument to pip.
You can pass pip commands to pip directly with the pip()
functions:
>>> import pipfromrepl
>>> pipfromrepl.pip('install pymsgbox')
Collecting pymsgbox
Using cached PyMsgBox-1.0.9-py3-none-any.whl
Installing collected packages: pymsgbox
Successfully installed pymsgbox-1.0.9
>>> pipfromrepl.pip('list')
Package Version Editable project location
---------------- ---------- -------------------------
certifi 2022.9.24
distlib 0.3.6
filelock 3.8.0
pip 22.3.1
pipenv 2022.11.11
pipfromrepl 0.1.0 C:\github\pipfromrepl
platformdirs 2.5.4
PyMsgBox 1.0.9
setuptools 65.5.1
virtualenv 20.16.7
virtualenv-clone 0.5.7
wheel 0.37.1
>>> pipfromrepl.pip('uninstall pymsgbox')
Found existing installation: PyMsgBox 1.0.9
Uninstalling PyMsgBox-1.0.9:
Would remove:
c:\users\al\.virtualenvs\pipfromrepl-fxbqt5ki\lib\site-packages\pymsgbox-1.0.9.dist-info\*
c:\users\al\.virtualenvs\pipfromrepl-fxbqt5ki\lib\site-packages\pymsgbox\*
Proceed (Y/n)? y
Successfully uninstalled PyMsgBox-1.0.9
There's also a pipenv()
function that runs pipenv instead of pip. It works the same as pip()
.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pipfromrepl-0.1.0.tar.gz
.
File metadata
- Download URL: pipfromrepl-0.1.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4ffbb33a4ae2fec27149b2113372aafd18bae529dbc279f9e1594d543f98d4a |
|
MD5 | 89e4a2f3674ba9cc4caa3e5999375aac |
|
BLAKE2b-256 | 13522c1c83371612e502009c1e9e124c27714f0a495f1970c826b3de05b997e8 |