Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update INSTALL.md #768

Merged
merged 1 commit into from
Apr 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
```bash
conda install pip
```
3. Git
3. git
```bash
sudo apt install git
```
Expand Down Expand Up @@ -61,13 +61,13 @@
- ndindex >= 1.4
- msgpack
- six >= 1.5
2. Create conda environment/ virtual environment for the installation of PISA. Assume that the name of the environment is `pisa_env` you can choose your preferred version of python >= 3.7
2. Create conda environment/ virtual environment for the installation of PISA. Assume that the name of the environment is `pisa_env` you can choose your preferred version of python >= 3.10

```bash
conda create -n pisa_env python=3.X
conda create -n pisa_env python=3.10
```

2. Activate the newly created environment (You can see the name of your environment in the bash shell after the activation)
3. Activate the newly created environment (You can see the name of your environment in the bash shell after the activation)

```bash
conda activate pisa_env
Expand Down Expand Up @@ -128,7 +128,7 @@ Arguments:
```python
outputs = template_maker.data.get_mapset('prob_mu')
```
- Plot the oscillgram
- Plot the oscillogram

```python
fig, axes = plt.subplots(figsize=(18, 5), ncols=3)
Expand Down
Loading