pythonloc
drop-in Python replacement that imports packages from local directory (attempt at PEP 582 implementation)
File Explorer
Download Latest Version (.zip)- __init__.py
- __main__.py
- pythonloc.py
- .gitignore
- CHANGELOG.md
- LICENSE
- makefile
- MANIFEST.in
- noxfile.py
- pythonloc.png
- README.md
- setup.py
# Installation Guide
git clone https://github.com/cs01/pythonloc
Downloads the entire project code from GitHub to your computer.
cd pythonloc
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install --user pythonloc
Installs the package published on PyPI directly β no need to clone the source.
Pulled directly from this repo's README.
3. Python
Easypip install --user pythonloc
Installs the package published on PyPI directly β no need to clone the source.
python3 -m pip install --user pythonloc
Installs the Python libraries listed in requirements.txt (or similar).
pip ...
Type this command into your terminal and run it.
pip freeze > requirements.txt
Type this command into your terminal and run it.
poetry self:update --preview # install 1.x version of Poetry
Type this command into your terminal and run it.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
