-
-
Notifications
You must be signed in to change notification settings - Fork 87
Installation
Siddhartha Dhar Choudhury edited this page Jan 23, 2021
·
2 revisions
If you are a user then follow these steps to install the latest version of simC:-
- Install using pip and simC repository's GitHub link:-
user@programmer~:$ pip install simc
This will install version 0.1 alpha-4
If you want to contribute to the simC compiler, then the following steps are for you to install a dev version of simC:-
-
Clone the repository:-
user@programmer~:$ git clone https://github.com/cimplec/sim-c
-
Navigate inside sim-c directory:-
user@programmer~:$ cd sim-c
-
Install simC in editable (dev) mode:-
user@programmer~:$ pip install -e .
-
Since you will be making changes to the compiler, you need to run the tests to make sure your change does not break any existing feature, you can install simC's test suite:-
user@programmer~:$ pip install git+https://github.com/cimplec/test-suite
We will be publishing the test suite to pypi soon.