Skip to content

Commit

Permalink
update local install instructions (pypa/pip#12330)
Browse files Browse the repository at this point in the history
  • Loading branch information
Technologicat committed Sep 27, 2024
1 parent 3c27ab9 commit 1446119
Showing 1 changed file with 9 additions and 19 deletions.
28 changes: 9 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -808,31 +808,21 @@ assert (my_map, double, (q, 1, 2, 3)) == (ll, 2, 4, 6)

**PyPI**

``pip3 install unpythonic --user``

or

``sudo pip3 install unpythonic``
``pip install unpythonic``

**GitHub**

Clone (or pull) from GitHub. Then,

``python3 setup.py install --user``

or

``sudo python3 setup.py install``

**Uninstall**
Clone the repo from GitHub. Then, navigate to it in a terminal, and:

Uninstallation must be invoked in a folder which has no subfolder called ``unpythonic``, so that ``pip`` recognizes it as a package name (instead of a filename). Then,

``pip3 uninstall unpythonic``
```bash
pip install .
```

or
To uninstall:

``sudo pip3 uninstall unpythonic``
```bash
pip uninstall unpythonic
```


## Support
Expand Down

0 comments on commit 1446119

Please sign in to comment.