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.
Dirk Alders f10eb81fb1 module update vor 2 Jahren
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
icon.xpm module update vor 2 Jahren
reposinit common text for reposinit output vor 2 Jahren
requirements.txt Initial ptpython setup vor 3 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