ptpython configuration
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
root 6657312cb2 Ansible adaptions vor 1 Jahr
icons pylibs update vor 1 Jahr
pylibs @ 9ce97cedf3 module update vor 2 Jahren
.gitignore Initial commit vor 3 Jahren
.gitmodules Pylibs added vor 3 Jahren
LICENSE Initial commit vor 3 Jahren
README.md Install instructions updated vor 2 Jahren
reposinit Ansible adaptions vor 1 Jahr
requirements.txt Added needed module to requirements.txt vor 2 Jahren

README.md

ptpython

Installation instruction for ptpython

Install

Create Virtualenv

virtualenv venv

Install Cutelog

source venv/bin/activate
pip install -r requirements.txt
deactivate

Open ptpython

venv/bin/ptpython

Upgrade

source venv/bin/activate
pip install -U -r requirements.txt
deactivate

Add pylibs to ptpython

git submodule init git submodule update cd pylibs git submodule init git submodule update cd ../venv/lib/python3.*/site-packages for lib in ls -d ../../../../pylibs/*/; do ln -s $lib; done