File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ pub fn install(wsl: bool, experimental: bool) {
16
16
17
17
// Update and upgrade the system
18
18
crate :: apt:: update ( ) ;
19
- crate :: apt:: upgrade ( ) ;
20
19
21
20
// Clone the repo
22
21
let res = crate :: git:: clone:: clone_repo (
@@ -99,8 +98,8 @@ pub fn install(wsl: bool, experimental: bool) {
99
98
// Check NVCC
100
99
crate :: utils:: nvidia:: is_nvcc_installed ( ) ;
101
100
102
- // Insert the HUGGINGFACE_TOKEN
103
- crate :: environ:: change_huggingface_token ( ) ;
101
+ // Create .env file
102
+ crate :: environ:: create_env_file ( ) ;
104
103
105
104
// Create the virtual environment
106
105
let res = crate :: utils:: python:: create_venv ( ) ;
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ pub fn install(experimental: bool) {
47
47
) ;
48
48
}
49
49
50
- // Insert the HUGGINGFACE_TOKEN
51
- crate :: environ:: change_huggingface_token ( ) ;
50
+ // Create .env file
51
+ crate :: environ:: create_env_file ( ) ;
52
52
53
53
// Create the virtual environment
54
54
let res = crate :: utils:: python:: create_venv ( ) ;
You can’t perform that action at this time.
0 commit comments