Last active
October 31, 2021 09:11
-
-
Save sritasngh/3849287a3081df9ae4209c241b6c9bd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## steps | |
- download miniconda https://repo.anaconda.com/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh | |
- https://conda.io/projects/conda/en/latest/user-guide/install/linux.html#installing-on-linux | |
- create a virual env `conda create -n vbasic` | |
- `conda activate vbasic` | |
- `conda install -c conda-forge jupyter xeus xtl nlohmann_json cppzmq` | |
- `mkdir build && cd build` | |
- `cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX` | |
- `make` | |
- `make install` | |
- `jupyter notebook` | |
- `jupyter console --kernel xbasic` CTRL+D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment