Skip to content

Commit 7b8429c

Browse files
committed
Update README.md adding download instructions
1 parent 3cccb81 commit 7b8429c

File tree

1 file changed

+54
-1
lines changed

1 file changed

+54
-1
lines changed

README.md

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,59 @@
11
# Tutorial on basic neural network concepts
22

3-
## Getting-Started
3+
- [Download the repository](#download-the-repository)
4+
- [Getting started](#getting-started)
5+
- [Running the tutorial](#running-the-tutorial)
6+
7+
## Download the repository
8+
9+
### Get the repository with Git
10+
11+
You will need to have Git previously installed in your computer.
12+
To check if you have it installed, open your terminal and type:
13+
14+
``` bash
15+
git --version
16+
```
17+
18+
#### Git installation in mac
19+
20+
``` bash
21+
brew update
22+
brew install git
23+
```
24+
25+
#### Git installation in linux
26+
27+
In Ubuntu/Debian
28+
29+
``` bash
30+
sudo apt install git
31+
```
32+
33+
In CentOS
34+
35+
``` bash
36+
sudo yum install git
37+
```
38+
39+
Once you have Git installed open your terminal, go to your desired directory, and type:
40+
41+
``` bash
42+
git clone https://github.com/machine-learning-tutorial/bayesian-optimization.git
43+
cd bayesian-optimization
44+
```
45+
46+
### Get the repository with direct download
47+
48+
Open your terminal, go to your desired directory, and type:
49+
50+
``` bash
51+
wget https://github.com/machine-learning-tutorial/bayesian-optimization/archive/refs/heads/main.zip
52+
unzip main.zip
53+
cd bayesian-optimization
54+
```
55+
56+
## Getting started
457

558
You need to install the dependencies before running the notebooks.
659

0 commit comments

Comments
 (0)