Pārlūkot izejas kodu

Stylistic changes to README.md

Andrej 1 mēnesi atpakaļ
vecāks
revīzija
01dbed3dfd
1 mainītis faili ar 9 papildinājumiem un 9 dzēšanām
  1. 9 9
      README.md

+ 9 - 9
README.md

@@ -21,17 +21,17 @@ import labkeyInterface
 
 Create virtualenv called `nix` where we will use nixWrapper:
 ```bash
-#: cd $HOME
-#:~$ mkdir venv
-#:~$ cd venv
-#:~/venv$ virtualenv -p python3 nix
-#:~/venv$ . ./nix/bin/activate
+:~$ cd $HOME
+:~$ mkdir venv
+:~$ cd venv
+:~/venv$ virtualenv -p python3 nix
+:~/venv$ . ./nix/bin/activate
 (nix) $:~/venv$ cd
 (nix) $:~$ pip install nixWrapper
 ```
 Whenever you need `nixWrapper` in your code, simply run:
 ```bash
-#: ~/venv/nix/python3 yourScript.py
+:~$ ~/venv/nix/python3 yourScript.py
 ```
 where in your script `yourScript.py` you use nixWrapper directly like in Usage section.
 
@@ -40,9 +40,9 @@ where in your script `yourScript.py` you use nixWrapper directly like in Usage s
 To integrate `nixWrapper` installed in virtualenv with your jupyter code, jupyter needs
 to be aware of virtualenv. To do that:
 ```bash
-#~$: . ~/venv/nix/bin/activate
-(nix) #:~$ pip install ipykernel
-(nix) #:~$ python -m ipykernel install --user --name=nix
+:~$ . ~/venv/nix/bin/activate
+(nix) :~$ pip install ipykernel
+(nix) :~$ python -m ipykernel install --user --name=nix
 Installed kernelspec nix in /home/<your name>/.local/share/jupyter/kernels/nix
 ```
 More info [here][venvJupyter].