update windows install
just updating the guide for windows users to streamline the process as well as setting up vscodeno_orderid_in_error
parent
1440e0b58f
commit
45b5902d77
34
README.rst
34
README.rst
|
@ -74,18 +74,36 @@ for a development install::
|
||||||
|
|
||||||
install for tinas
|
install for tinas
|
||||||
*****************
|
*****************
|
||||||
for windows peeps you can start by getting `conda installed`_
|
for windows peeps you can start by installing all the prerequisite software:
|
||||||
and the `C++ build toolz`_ on your system.
|
install git with all default settings - https://git-scm.com/download/win
|
||||||
|
install visual studio code default settings - select default profile for terminal as "cmd" (command prompt) - https://code.visualstudio.com/download
|
||||||
|
install anaconda all default settings - https://www.anaconda.com/products/individual
|
||||||
|
install microsoft build tools (check the box for Desktop development for C++) - https://visualstudio.microsoft.com/visual-cpp-build-tools/
|
||||||
|
|
||||||
then, `crack a conda shell`_ and run the following commands::
|
then, `crack a conda shell`_ and run the following commands::
|
||||||
|
|
||||||
conda create piker --python=3.9
|
mkdir code # create code directory
|
||||||
conda activate piker
|
cd code # change directory to code
|
||||||
conda install pip
|
pwd # shows present working directory, should show code inside default user folder
|
||||||
pip install --upgrade setuptools
|
git clone https://github.com/pikers/piker.git # downloads piker installation package from github
|
||||||
cd dIreCToRieZ\oF\cODez\piker\
|
cd piker # change directory to piker
|
||||||
pip install -r requirements -e .
|
|
||||||
|
|
||||||
|
conda create -n py39 # creates conda environment named py39
|
||||||
|
conda activate py39 # activates py39
|
||||||
|
conda install -c conda-forge python-levenshtein # in case it is not already installed
|
||||||
|
conda install pip # may already be installed
|
||||||
|
pip # will show if pip is installed
|
||||||
|
|
||||||
|
pip install -e . -r requirements.txt # install piker in editable mode
|
||||||
|
piker -b kraken -b binance chart btcusdt.binance # command to load chart for test
|
||||||
|
|
||||||
|
# FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\wyatt\\AppData\\Roaming\\piker\\brokers.toml'
|
||||||
|
# navigate to file directory above (may be different on your machine, location should be listed in the error)
|
||||||
|
# create folder and copy and paste file or create a blank file using notepad --> 'C:\\Users\\user\\code\\data/brokers.toml'
|
||||||
|
|
||||||
|
|
||||||
|
now that piker is installed we can set up vscode as the default terminal for running piker and editing the code.
|
||||||
|
within vscode you are going to want cmd.exe as your default terminal.
|
||||||
|
|
||||||
in order to look coolio in front of all ur tina friends (and maybe
|
in order to look coolio in front of all ur tina friends (and maybe
|
||||||
want to help us with testin, hackzing or configgin), install
|
want to help us with testin, hackzing or configgin), install
|
||||||
|
|
Loading…
Reference in New Issue