Skip to content

Commit 1ede2fe

Browse files
authored
Merge pull request rushter#65 from mohit0920/master
sh for bash commands improved documentation
2 parents 0d1022e + 81b6b18 commit 1ede2fe

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,24 @@ All algorithms are implemented in Python, using numpy, scipy and autograd.
2424

2525

2626
### Installation
27+
```sh
2728
git clone https://github.com/rushter/MLAlgorithms
2829
cd MLAlgorithms
2930
pip install scipy numpy
3031
python setup.py develop
31-
32+
```
3233
### How to run examples without installation
34+
```sh
3335
cd MLAlgorithms
3436
python -m examples.linear_models
35-
37+
```
3638
### How to run examples within Docker
39+
```sh
3740
cd MLAlgorithms
3841
docker build -t mlalgorithms .
3942
docker run --rm -it mlalgorithms bash
4043
python -m examples.linear_models
41-
44+
```
4245
### Contributing
4346

4447
Your contributions are always welcome!

0 commit comments

Comments
 (0)