-
-
Notifications
You must be signed in to change notification settings - Fork 893
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to build on ArchLinux / Failed requirements #2195
Comments
For anyone facing the same issue, I found a workaround. One has to use the old conan config (pre v.2). So, instead of doing this step from the wiki:
Do the following: git clone https://github.com/ultimaker/conan-config.git
cd conan-config
git checkout 3226488623c642b40ca7ce3f62d3f33de046d11e
cd ..
conan config install ./conan-config Once this is done, I had to alter the remotes too, by adding conan center and removing cura private, so that {
"remotes": [
{
"name": "conancenter",
"url": "https://center.conan.io",
"verify_ssl": true
},
{
"name": "cura",
"url": "https://cura.jfrog.io/artifactory/api/conan/cura-conan-dev",
"verify_ssl": true
}
]
} I hope this helps someone, somewhere! |
I have solved as well, thank you. |
Hi, thank you for posting. I encountered this error while trying to install CuraEngine 5.9.0, but I couldn't resolve it.
However, when running the following command:
I received this error:
I suspect this error occurs because the Do you have any advice on how to address this issue? |
Hi,
Indeed the problem is because you're using definition files from other Cura version. You need to reference the definitions from the same version you're running. Try downloading them directly from the Cura repository: https://github.com/Ultimaker/Cura/tree/main/resources/definitions |
beacuse the bad network,I download the conan config from china platform, i found that it's not the lastest version, but the CuraEngine Source is lastest. When i get the conan config from github directly, no probelm occured. |
Hi there,
I'm trying to build CuraEngine from source on my machine.
The build process with conan seems kinda broken.
As per the wiki, I've installed conan in version 1.65.0. I'm running this in a venv so it doesn't mess with my whole setup:
$ python -m venv cura_venv $ source cura_venv/bin/activate $ pip install conan==1.65
Now I can assert conan is running fine:
The profile setup runs fine. But then, when trying to install, I get the following:
As far as my understanding of conan goes,
replace_requires
is a conan >2 option. This seems in contradiction with the specified version (1.65.0). This is weird, but I found a workaround by removing the section altogether in the cura profile.Anyway, let's try and re-build!
As you can see, the build process stops because of the missing dependency
scripta/0.1.0@ultimaker/testing
.I have tried a few things, in particular removing the cura remote with
conan remote remove cura
or manually adding a remote:conan remote add cura-conan https://cura.jfrog.io/artifactory/api/conan/cura-conan
, all without success.Any help is very welcome!
The text was updated successfully, but these errors were encountered: