README.md aktualisiert
This commit is contained in:
parent
2fa9ce7f1d
commit
6292f0b5e9
1 changed files with 35 additions and 6 deletions
41
README.md
41
README.md
|
@ -1,12 +1,41 @@
|
||||||
# Wobbl tools
|
# Wobbl tools
|
||||||
|
|
||||||
To install, make a new folder in the python site-packages folder named tools and put all files in it.
|
A python module for some projects by the Wobbler.
|
||||||
|
|
||||||
If a folder named tools already exists in the site-packages folder, you can name the folder "wobbl_tools" or something else.
|
## Installation
|
||||||
Dont forget to change the imports in the script that uses this tools.
|
|
||||||
|
|
||||||
To see, where the site-packages folder is, use:
|
You first have to check where your module folder is located. You can do this by running this command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python3 -m site
|
||||||
```
|
```
|
||||||
python -m site
|
|
||||||
|
The output should look like this:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sys.path = [
|
||||||
|
'/home/user',
|
||||||
|
'/usr/lib/python310.zip',
|
||||||
|
'/usr/lib/python3.10',
|
||||||
|
'/usr/lib/python3.10/lib-dynload',
|
||||||
|
'/home/user/.local/lib/python3.10/site-packages',
|
||||||
|
'/usr/local/lib/python3.10/dist-packages',
|
||||||
|
'/usr/lib/python3/dist-packages',
|
||||||
|
'/usr/lib/python3.10/dist-packages',
|
||||||
|
]
|
||||||
|
USER_BASE: '/home/user/.local' (exists)
|
||||||
|
USER_SITE: '/home/user/.local/lib/python3.10/site-packages' (exists)
|
||||||
|
ENABLE_USER_SITE: True
|
||||||
```
|
```
|
||||||
You can use one of the listed folders.
|
|
||||||
|
The path after "USER_SITE" is the path to your module folder. You have to `cd into the folder and clone this repository.
|
||||||
|
You can do that using these commands:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /home/user/.local/lib/python3.10/site-packages
|
||||||
|
git clone https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools.git
|
||||||
|
```
|
||||||
|
|
||||||
|
<sup>Dont forget to replace the path!</sup>
|
||||||
|
|
||||||
|
And you are done!
|
Loading…
Reference in a new issue