Skip to content

Commit 9ea4484

Browse files
authored
Merge pull request #43 from AbstractBorderStudio/master
docs: removed some typos and set correct backlink .toml file
2 parents b9aba4b + 3580efd commit 9ea4484

File tree

1 file changed

+9
-9
lines changed
  • 2024-25/contrib/poetry_installation_guide

1 file changed

+9
-9
lines changed

2024-25/contrib/poetry_installation_guide/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- [Python installation](#python-installation)
99
- [Windows powershell setup](#windows-powershell-setup)
1010
- [Virtual environment](#virtual-environment)
11-
- [Setting up vscodeS](#setting-up-vscodes)
11+
- [Setting up vscode](#setting-up-vscode)
1212
- [Creating a Virtual environment using venv](#creating-a-virtual-environment-using-venv)
1313
- [Activate the environment](#activate-the-environment)
1414
- [Install poetry](#install-poetry)
@@ -55,9 +55,9 @@ As stated in the [poetry docs](https://python-poetry.org/docs/):
5555
> *Poetry should always be installed in a dedicated virtual environment to isolate it from the rest of your system. It should in no case be installed in the environment of the project that is to be managed by Poetry. This ensures that Poetry’s own dependencies will not be accidentally upgraded or uninstalled.*
5656
5757

58-
### Setting up vscodeS
58+
### Setting up vscode
5959

60-
So open visual studio code in your desired folder. Then open the terminal
60+
Open visual studio code in your desired folder. Then open the terminal
6161

6262

6363
>Terminal -> New Terminal
@@ -74,7 +74,7 @@ You should see a powershell terminal opened in your interface:
7474

7575
### Creating a Virtual environment using venv
7676

77-
> ⚠️ for the following step always remain in the yor working folder.
77+
> ⚠️ for the following step always remain in the your working folder.
7878
7979
In the just opened terminal use the following command:
8080

@@ -116,7 +116,7 @@ pip install poetry
116116
117117
### Downalod the .toml file for the course
118118
119-
To configure the project we need the .toml file with all the required packacges. We can use the one in [Professor Squillero's Repository]([2024-25/pyproject.toml](https://github.com/squillero/computational-intelligence/blob/master/2024-25/pyproject.toml)).
119+
To configure the project we need the .toml file with all the required packages. We can use the one in [Professor Squillero's Repository](https://github.com/squillero/computational-intelligence/blob/master/2024-25/pyproject.toml).
120120
Download the file and put it inside your project folder (NOT inside the venv folder).
121121
122122
```
@@ -139,13 +139,13 @@ Now we can run the following command to tell poetry to use the .toml file to dow
139139
peotry install
140140
```
141141
142-
It will take some time to downalod all the files. You can check in `<your-venv>/Lib/` if the packages and dependencies are correctly installed.
142+
It will take some time to download all the files. You can check in `<your-venv>/Lib/` if the packages and dependencies are correctly installed.
143143
144144
After installation you're good to go!
145145
146146
## jupyter
147147
148-
To conclude this guide let's create a notebook and set the new envirnoment we created as the running one.
148+
To conclude this guide let's create a notebook and set the new environment we created before as the current kernel.
149149
150150
### Create jupyter notebook
151151
@@ -165,7 +165,7 @@ Then select your newly created environment
165165
166166
![](imgs/p6.png)
167167
168-
You're all done now! Try some code and che if all the file works.
168+
You're all done now! Try some code and check if all the file works.
169169
170170
## Credits
171171
@@ -175,4 +175,4 @@ You're all done now! Try some code and che if all the file works.
175175
- [poetry docs](https://python-poetry.org/docs/)
176176
- [Getting started with the terminal](https://code.visualstudio.com/docs/terminal/getting-started#:~:text=Open%20the%20terminal%20by%20selecting,the%20Ctrl%2B%60%20keyboard%20shortcut.)
177177
- [venv — Creation of virtual environments](https://docs.python.org/3/library/venv.html)
178-
- [Professor Squillero's Repository]([2024-25/pyproject.toml](https://github.com/squillero/computational-intelligence/blob/master/2024-25/pyproject.toml))
178+
- [Professor Squillero's Repository](https://github.com/squillero/computational-intelligence/blob/master/2024-25/pyproject.toml)

0 commit comments

Comments
 (0)