We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3918bc8 commit a343b0eCopy full SHA for a343b0e
2 files changed
.gitignore
@@ -18,6 +18,7 @@ target
18
*/.vscode/*
19
*.DS_Store
20
tmp_venv/*
21
+sequencer_venv/*
22
.vscode/settings.json
23
/data
24
/logs
crates/apollo_infra_utils/src/cairo0_compiler.rs
@@ -37,7 +37,9 @@ pub fn verify_cairo0_compiler_deps() {
37
assert_eq!(
38
expected_cairo_lang_version, cairo_lang_version,
39
"cairo-lang version {expected_cairo_lang_version} not found (installed version: \
40
- {cairo_lang_version}). Please run:\npip3.9 install -r {:?}\nthen rerun the test.",
+ {cairo_lang_version}). Run the following commands (enter a python venv and install \
41
+ dependencies) and retry:\npython3.9 -m venv sequencer_venv\n. \
42
+ sequencer_venv/bin/activate\npip install -r {:?}",
43
*PIP_REQUIREMENTS_FILE
44
);
45
}
0 commit comments