You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Creating a Virtual environment using venv](#creating-a-virtual-environment-using-venv)
13
13
-[Activate the environment](#activate-the-environment)
14
14
-[Install poetry](#install-poetry)
@@ -55,9 +55,9 @@ As stated in the [poetry docs](https://python-poetry.org/docs/):
55
55
> *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.*
56
56
57
57
58
-
### Setting up vscodeS
58
+
### Setting up vscode
59
59
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
61
61
62
62
63
63
>Terminal -> New Terminal
@@ -74,7 +74,7 @@ You should see a powershell terminal opened in your interface:
74
74
75
75
### Creating a Virtual environment using venv
76
76
77
-
> ⚠️ for the following step always remain in the yor working folder.
77
+
> ⚠️ for the following step always remain in the your working folder.
78
78
79
79
In the just opened terminal use the following command:
80
80
@@ -116,7 +116,7 @@ pip install poetry
116
116
117
117
### Downalod the .toml file for the course
118
118
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).
120
120
Download the file and put it inside your project folder (NOT inside the venv folder).
121
121
122
122
```
@@ -139,13 +139,13 @@ Now we can run the following command to tell poetry to use the .toml file to dow
139
139
peotry install
140
140
```
141
141
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.
143
143
144
144
After installation you're good to go!
145
145
146
146
## jupyter
147
147
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.
149
149
150
150
### Create jupyter notebook
151
151
@@ -165,7 +165,7 @@ Then select your newly created environment
165
165
166
166

167
167
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.
169
169
170
170
## Credits
171
171
@@ -175,4 +175,4 @@ You're all done now! Try some code and che if all the file works.
175
175
- [poetry docs](https://python-poetry.org/docs/)
176
176
- [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.)
177
177
- [venv — Creation of virtual environments](https://docs.python.org/3/library/venv.html)
0 commit comments