Docs: Update of developer guide (#2036)

* Replaced python3.8 to 3.1 in development docs
* added link to the port where server is running
This commit is contained in:
Paarth Agarwal 2023-01-10 22:29:52 +05:30 committed by GitHub
parent c1c925f037
commit 984867a180
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,7 @@ sudo yum -y install libusb libudev-devel libffi libffi-devel openssl-devel && su
```
#### Windows
* Install python 3.8.x by downloading from [python.org](https://www.python.org/downloads/windows/)
* Install python 3.10.x by downloading from [python.org](https://www.python.org/downloads/windows/)
_Do NOT install python from the Microsoft Store! It runs in a different execution environment that creates enormous headaches!_
@ -85,8 +85,7 @@ sudo yum -y install libusb libudev-devel libffi libffi-devel openssl-devel && su
### Set up virtualenv
Specter is using `hwi-2.1.0` which by now supports higher Python versions than Specter itself. Specter currently supports Python 3.7-3.9.
If you have Python 3.10 as your global version then be sure to also install an old Python version and pass it to `virtualenv` (e.g. `virtualenv --python=python3.8 .env`) or use pyenv.
Specter is using `hwi-2.1.0` which by now supports higher Python versions than Specter itself. Specter currently supports Python 3.9 and 3.10.
```sh
git clone https://github.com/cryptoadvance/specter-desktop.git
@ -113,6 +112,7 @@ Run the server:
cd specter-desktop
python3 -m cryptoadvance.specter server --config DevelopmentConfig --debug
```
After that, Specter will be available at http://127.0.0.1:25441/.
#### If `pip install` fails on `cryptography==3.4.x`