-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (75 loc) · 4.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="shortcut icon" href="Home/rabbit.ico"> -->
<link rel="stylesheet" href="css/index.css">
<title>Audio Tech II | Home</title>
</head>
<body>
<div class="nav-bar">
<div class="nav-bar">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Lectures
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="lectures/DSP.html">DSP</a>
<a href="lectures/Statistics.html">Statistics</a>
</div>
</div>
<a href="coding/coding.html">Coding</a>
<a href="interaction/interaction.html">Interaction</a>
<a href="info/info.html">Information</a>
</div>
</div>
<div class="description">
<h1>Welcome</h1>
<p>This is the website for Audio Tech II. </p>
<h2>Python Environment</h2>
<div class="colab-link"><a href="Lesson1_InstallingJupyter.html"><h3>A. Installation Instructions (Without Anaconda)</h3></a></div>
We will be installing Jupyter in a virtual environment, so that we ensure as a class that we all are using IDENTICAL versions of all python libraries, regardless of what is already installed globally on your machine. Therefore, even if you already have used Jupyter, you will STILL need to ensure you set up a virtual environment that is identical to everyone else's.
We will also be calling Jupyter from the command line so we will set up a few easy steps to ensure that getting to our notebooks is easy and simple (even if you hate command line.)
<h3>B. Installation With Anaconda</h3>
<h4>Step 1: Installing Anaconda</h4>
<p>1. Visit the Installation documentation page:
<div class="colab-link">
<a href="https://docs.anaconda.com/free/anaconda/install/index.html">
https://docs.anaconda.com/free/anaconda/install/index.html
</a>
</div>
<div class="colab-link">
<a href="https://docs.anaconda.com/free/anaconda/install/windows/">Installing on Windows</a>
</div>
<div class="colab-link">
<a href="https://docs.anaconda.com/free/anaconda/install/mac-os/">Installing on MacOS</a>
</div>
<div class="colab-link">
<a href="https://docs.anaconda.com/free/anaconda/install/linux/">Installing on Linux</a>
</div>
</p>
<p>2. Visit the Anaconda website:
<div class="colab-link">
<a href="https://www.anaconda.com/products/individual">
https://www.anaconda.com/products/individual
</a>
</div>
</p>
<p>3. Choose the appropriate installer for your operating system (Windows, macOS, or Linux) and download the installer executable file.</p>
<p>4. Run the installer file that you downloaded in the previous step and follow the installation wizard instructions.</p>
<h4>Step 2: Creating Environment</h4>
<p>1. Download the environment file:
<div class="colab-link">
<a href="https://github.com/JiayingLi0803/AudioTechII_GRA/blob/main/environment/AudioTechII.yml">AudioTechII.yml</a>
</div>
</p>
<p>2. Open the Anaconda Prompt or your preferred command-line interface.</p>
<p>3. Navigate to the directory where you saved the .yml file using the cd command (e.g., cd path/to/file).</p>
<p>4. Run the command to create the environment: <code>conda env create -f AudioTechII.yml</code></p>
<p>5. Wait for the installation process to complete. To activate the environment, use the command: <code>conda activate AudioTechII.</code></p>
<p>6. In case that you need to remove the environment, use the command: <code>conda remove -n AudioTechII --all</code></p>
</div>
</body>
</html>