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
Copy file name to clipboardExpand all lines: 01-2020-11-06/assignment_01_img_encoded.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ _Due: 13.11.2020_
5
5
1. Please follow the instructions below to install Conda.
6
6
2. Get familiar with the Shell-Commands `cd`, `ls`, `pwd` and `mkdir`.
7
7
3. Create a Conda environment called `fupy` with the packages `python=3.8` and `jupyterlab` installed.
8
+
4. Launch the `chatbot.py` application.
8
9
9
10
All information needed should be available below.
10
11
@@ -28,6 +29,9 @@ If you should have any Questions don't hesitate to state them in our Webex-Teams
28
29
- [Installing packages](#installing-packages)
29
30
- [Deleting environment](#deleting-environment)
30
31
- [Creating an Conda environment from an environment.yml file](#creating-an-conda-environment-from-an-environmentyml-file)
32
+
- [Python](#python)
33
+
- [Launching Python](#launching-python)
34
+
- [Launching an Python Application](#launching-an-python-application)
31
35
32
36
# Conda Installation
33
37
@@ -8126,3 +8130,39 @@ _Note: this will be used later in the lecture and is not part of the assignment_
8126
8130
- Further you may use the Python module `pip` for downloading additional packages from PyPi, the Python Package Index.
8127
8131
8128
8132
- Packaging in Python is still not yet completely free of pain, hence it is recommended to stay - if possible - within one realm (in our case Conda!), when you start to build more complex and sophisticated software.
8133
+
8134
+
# Python
8135
+
8136
+
## Launching Python
8137
+
8138
+
- From your newly created conda environment you can launch the Python interpreter using (make sure, that you are in the right conda environment! Reminder: You can change the enviroment using `conda activate environment_name`):
8139
+
8140
+
```
8141
+
(fupy) aleks@pc$ python
8142
+
Python 3.8.5 (default, Sep 4 2020, 07:30:14)
8143
+
[GCC 7.3.0] :: Anaconda, Inc. on linux
8144
+
Type "help", "copyright", "credits" or "license" for more information.
8145
+
>>>
8146
+
```
8147
+
8148
+
## Launching an Python Application
8149
+
8150
+
- Use `cd`, `ls` (and `pwd`) to navigate to the location you created/downloaded a Python file (ending with `.py`)
8151
+
8152
+
```
8153
+
(fupy) aleks@pc$ ls
8154
+
Desktop Documents Downloads Music Pictures Public Uni Videos
8155
+
8156
+
(fupy) aleks@pc$ cd Uni/abv_dataanalysis_python/01_2020_11_06
Copy file name to clipboardExpand all lines: 01-2020-11-06/assignment_01_img_from_path.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ _Due: 13.11.2020_
5
5
1. Please follow the instructions below to install Conda.
6
6
2. Get familiar with the Shell-Commands `cd`, `ls`, `pwd` and `mkdir`.
7
7
3. Create a Conda environment called `fupy` with the packages `python=3.8` and `jupyterlab` installed.
8
+
4. Launch the `chatbot.py` application.
8
9
9
10
All information needed should be available below.
10
11
@@ -28,6 +29,9 @@ If you should have any Questions don't hesitate to state them in our Webex-Teams
28
29
-[Installing packages](#installing-packages)
29
30
-[Deleting environment](#deleting-environment)
30
31
-[Creating a conda environment from an environment.yml file](#creating-a-conda-environment-from-an-environmentyml-file)
32
+
-[Python](#python)
33
+
-[Launching Python](#launching-python)
34
+
-[Launching an Python Application](#launching-an-python-application)
31
35
32
36
# Conda Installation
33
37
@@ -289,3 +293,39 @@ _Note: this will be used later in the lecture and is not part of the assignment_
289
293
- Further you may use the Python module `pip` for downloading additional packages from PyPi, the Python Package Index.
290
294
291
295
- Packaging in Python is still not yet completely free of pain, hence it is recommended to stay - if possible - within one realm (in our case Conda!), when you start to build more complex and sophisticated software.
296
+
297
+
# Python
298
+
299
+
## Launching Python
300
+
301
+
- From your newly created conda environment you can launch the Python interpreter using (make sure, that you are in the right conda environment! Reminder: You can change the enviroment using `conda activate environment_name`):
302
+
303
+
```
304
+
(fupy) aleks@pc$ python
305
+
Python 3.8.5 (default, Sep 4 2020, 07:30:14)
306
+
[GCC 7.3.0] :: Anaconda, Inc. on linux
307
+
Type "help", "copyright", "credits" or "license" for more information.
308
+
>>>
309
+
```
310
+
311
+
## Launching an Python Application
312
+
313
+
- Use `cd`, `ls` (and `pwd`) to navigate to the location you created/downloaded a Python file (ending with `.py`)
314
+
315
+
```
316
+
(fupy) aleks@pc$ ls
317
+
Desktop Documents Downloads Music Pictures Public Uni Videos
318
+
319
+
(fupy) aleks@pc$ cd Uni/abv_dataanalysis_python/01_2020_11_06
0 commit comments