Open mscarey opened 3 years ago
This process seems to have changed since I replaced setup.py with setup.cfg.
I had to do this:
Use venv to create a virtual environment with a unique name (no other virtual environment on the computer has the same name).
python -m venv ausvenv
Install both the regular requirements and the dev requirements.
python -m pip install -r requirements.txt python -m pip install -r requirements-dev.txt
Register the virtual environment with ipykernel.
python -m ipykernel install --user --name=ausvenv
Start a conda environment.
conda activate
Activate conda development mode in the authorityspoke directory.
authorityspoke
conda develop .
Start Jupyter Notebook
jupyter notebook
In the web browser, navigate to the notebooks folder and open one of the .ipynb files.
notebooks
.ipynb
This process seems to have changed since I replaced setup.py with setup.cfg.
I had to do this:
Use venv to create a virtual environment with a unique name (no other virtual environment on the computer has the same name).
Install both the regular requirements and the dev requirements.
Register the virtual environment with ipykernel.
Start a conda environment.
Activate conda development mode in the
authorityspoke
directory.Start Jupyter Notebook
In the web browser, navigate to the
notebooks
folder and open one of the.ipynb
files.