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
Error: ERROR: placeholder '/root/miniconda3/envs/_build_placehold_placehold_placehold_placehold_placehold_p' too short in: glib-2.43.0-2
And then I followed your instruction: "If you see the following error, then update your Anaconda with conda update conda and downgrade it to 4.0.5 conda install conda==4.0.5." But it didn't work.
I found that the problem came from
And I succeeded.
I found that conda 4.0.5 and 4.1.11 are no different on this problem. So the version of conda is not the point.
To solve this problem without modifying your script, I re-installed the anaconda in a directory with a shorter absolute path
Then there were no problem when I run install_dependencies.sh.
If one does not want to re-install anaconda, I think to use conda create -p your_short_path can also work. For example, use
I have encountered the following problem.
And then I followed your instruction: "If you see the following error, then update your Anaconda with
conda update conda
and downgrade it to 4.0.5conda install conda==4.0.5
." But it didn't work.I found that the problem came from
in your
install_dependencies.sh
.Then I read conda/conda-build#877 and https://groups.google.com/a/continuum.io/forum/#!topic/anaconda/fgDBJ2YwETI.
My anaconda path is
It seemed that when I run
the prefix was
which consisted of 86 characters. Then I tried to limit it to 80 characters. So I trimmed the trailing 6 characters in
aquas_chipseq
and runAnd I succeeded.
I found that conda 4.0.5 and 4.1.11 are no different on this problem. So the version of conda is not the point.
To solve this problem without modifying your script, I re-installed the anaconda in a directory with a shorter absolute path
Then there were no problem when I run
install_dependencies.sh
.If one does not want to re-install anaconda, I think to use
conda create -p your_short_path
can also work. For example, useto replace
in
The text was updated successfully, but these errors were encountered: