dahongj commited on
Commit
d976f31
1 Parent(s): 4dd2a27

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -1 +1,34 @@
1
- # 4613-Project
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Sentiment Analysis
3
+ emoji: 😻
4
+ colorFrom: red
5
+ colorTo: purple
6
+ sdk: streamlit
7
+ sdk_version: 1.17.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: unknown
11
+ ---
12
+
13
+ # csuy-4613-Project
14
+ Milestone 1
15
+
16
+ The operating system that is being used is Windows 10 Home. In order to run Docker on this operating system, a
17
+ Windows Subsystem for Linux (WSL) must be used.
18
+
19
+ WSL was installed by using the wsl --install command in the Windows Command Prompt. This installed the Ubuntu
20
+ distribution of Linux. To set the WSL version to WSL 2, the comman wsl --set-version Ubuntu 2 was used.
21
+
22
+ The Docker app was installed from the docker website. The option for WSL 2 had to be verified in the
23
+ Docker setting. Running wsl.exe -l -v checks the versions of the distro, which we could verify that
24
+ the distro Ubuntu ran in version 2.
25
+
26
+ We set Ubuntu as the default distro with the command wsl --set-default ubuntu
27
+
28
+ Using VSCode as the coding environment, we can enter WSL by using wsl and code in the terminal. From there
29
+ a linux command prompt can be seen, using ~ to accept new commands. Running docker run hello-world verifies
30
+ that the docker is working.
31
+
32
+ ![docker](https://user-images.githubusercontent.com/33811542/227808275-baf0dec3-181c-4b04-beeb-b42c35667edb.jpg)
33
+
34
+ Milestone 2