Here is my code:
install-pkg "Minecraft.deb"
I am trying to install a .deb package and whenever I run the code, I get an error message telling me that they could not find the install-pkg command.
I cannot find out how to do it. Any help?
Try with dpkg -i Minecraft.deb
Related
I receive an error while running an example code from https://github.com/facebookresearch/Mephisto/blob/main/examples/parlai_chat_task_demo/README.md
python3 parlai_test_script.py
I try to run an example script.
The error:
hydra.errors.ConfigCompositionException: Error merging mephisto/blueprint=parlai_chat
May be someone have already faced the same problem and fixed it? Thank you!
I find an answer! When you install parlai with pip, hydra-core-1.0.7 is a dependency and this old version of package is the reason of my error. You need to install hydra-core-1.1.1.
I hope that it will be useful for somebody.
Im trying yo install bazel-0.8.0 in my raspberry pi 3, but when i compile bazel, after an hour, through me an error. The specific error i think is package-bazel.sh zip: doesnt found. I follow the instruction of this video "https://www.youtube.com/watch?v=WqCnW_2XDw8", and i do all the things like the video, but i cant fix that error that appears to me. Anybody know why i get that error?
This is the exactly error i get:
It seems as the programm zip is not installed. Please try to execute the command line to install all prerequisits as mentioned here https://docs.bazel.build/versions/master/install-compile-source.html#unix-like-systems
When I try to make Glade in MSYS2, after navigating to the folder and typing in ./configure it starts to install but then hits an error and terminates:
"checking for itstool . . .no"
followed by:
"configure: error: itstool not found"
I read here that it might have something to do with Python packages not being installed?:
https://mail.gnome.org/archives/gtk-osx-users-list/2014-August/msg00018.html
Please help this noob get Glade up and running! :)
Cheers,
The MSYS2 folks provide a repository full of packages built for you (itstool is there). So you just want to install Glade. pacman -Ss glade will search for packages and install it with pacman -S ... (I am not on Windows to see exact name).
I'm working on macosx and I try to use httpie (with Symfony2 and FOSRestBundle).
I follow different tutorial on how to install httpie.
When I try to launch with: http httpie.org
I received the following error :
http: error: AttributeError: 'HTTPConnection' object has no attribute '_tunnel_host'
I can't find anything on Google.
Do I have to configure something special or do I have to install another thing ?
Thanks !
It looks like a bug. I'd try to update/reinstall HTTPie (pip install --force-reinstall --upgrade httpie), and fill a bug report if it doesn't help.
I just managed to get "dot" installed correctly, per a warning in phpDocumentor. Now when I try to build my docs, however, I am getting the exception:
[phpDocumentor\GraphViz\Exception]
An error occurred while creating the graph; GraphViz returned: Format: "svg" not recognized. Use one of:
Does anyone know how to get past this? The command I am running is:
php phpdoc.php -c mypath/phpdoc.dist.xml -p
I had this same issue, running sudo dot -c fixed it for me.