Error: Failed with error: No such Project : polymod - haxe

I am trying to make a Friday Night Funkin' mod, but when I compile it, this error shows up:
Error: Could not find haxelib "polymod", does it need to be installed?
So of course I tried to install it, but then this showed up:
Error: Failed with error: No such Project : polymod
Btw I used this command to (at least try) to install polymod:
haxelib install polymod
Thanks

The library is not published to lib.haxe.org, which is why haxelib install doesn't work. According to the official build instructions, the correct command is:
haxelib git polymod https://github.com/larsiusprime/polymod.git

Or if you're using Lix it's be :)
lix install gh:larsiusprime/polymod

As of a few weeks ago, Polymod is now available on HaxeLib.
The following command (which previously did not work) is now the CORRECT way to install Polymod:
haxelib install polymod

Related

Installing rjags on Fedora 33

I'm trying to install rjags on a Fedora 33 system running R 4.0.3. I've installed JAGS 4.3.0 from source and can run the software from the command line, but when I try to install the package in R, I get this error:
checking version of JAGS library... link error
configure: error: Runtime link error: See the INSTALL file for help
ERROR: configuration failed for package ‘rjags’
I've followed this tutorial for building an installing on Fedora, and have all the expected directories under /usr/local/lib64, but get the same errors.
I've also followed this tutorial which specifies the various file locations - also get the same errors.
Finally, I found this which gives some options under section 3, but none of those worked.
I stumbled across a solution here that seems to work:
https://github.com/cran/rjags/blob/master/INSTALL
Installing rjags with the argument below seems to have worked:
> install.packages("rjags", configure.args="--enable-rpath")

Command "python setup.py egg_info" failed with error code 1 in C:\Users\Admin\AppData\Local\Temp\pip-install-qrebbk1j\cffi\

Please read before marking as duplicate:
I am trying to install scrapy with pip but it gives me following error:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Admin\AppData\Local\Temp\pip-install-qrebbk1j\cffi\
I have tried every solution available on stackoverflow and nothing solves my error.
Yes,my pip is updated and setup_tools is also updated.
Everything was working fine and I did install other packages today itself but when I tried to install scrapy it gave this error and I have no idea what else i can do I tried everything I could do.
I followed every step on this answer
However, nothing works, please help.
I have finally resolved the issue, as it happens the package I was trying to install needs windows sdk 8.1 which got installed after installing the sdk.
However now this also installs a package called twisted for dependency I guess, which has some components written in C thus it needs a C compiler. which gave me this error
error: Setup script exited with error: command 'cl.exe' failed: No such file or directory
Hence, I could download a vs c++ compiler and it would solve the error. But a simpler solution would be downloading an already compiled version of the required packages which are mostly available on this site for windows. Although this is not official distribution so use it at your own risk.

how to install the "Make" command in Windows

I have been trying to install the command "make" in Windows but I couldn't.
I tried with cygwin and GNU, but I think I am making something wrong somewhere.
Can anyone give me some detailed steps please !
make is available as package in cygwin. It is not one of the base package so you need to require setup to install it.
See User Guide at:
https://cygwin.com/cygwin-ug-net/setup-net.html#setup-packages

Installing gearman on windows 7 through cygwin and get "configure: error: Unable to find libevent"

I'm a newbie trying to install gearman on windows through cygwin using the tutorial here: http://www.phpvs.net/2010/11/30/installing-gearman-and-gearmand-on-windows-with-cygwin/
I need to install gearman to develop on my windows 7 laptop.
I've installed libevent in my C:\cygwin\libeventInstall directory but when I do a ./configure on gearman it gives me the error: configure: error: Unable to find libevent
I've read that I need to install libevent-devel. I don't know what libevent-devel is and how I go about installing it through cygwin. I've found a bunch of .rpm install files for libevent-devel but I don't think I can install that on windows. I've also found a libevent-devel-2.0.11-1.tar.bz2 but it contains a bunch of header files and no configure file. There doesn't seem to be any documentation on exactly how to install libevent-devel on cygwin.
Been stuck for a few days. Any pointers would be helpful. Thanks!
You need to build LibEvent, it is not included in Cygwin. I haven't tried this, but a google search led to the following instructions:
you need
http://win6.jp/Cygwin/cygwin-1.5.25-15-ipv6-0.22.zip
http://monkey.org/~provos/libevent-1.4.9-stable.tar.gz
unpack cygwin-1.5.25-15-ipv6-0.22.zip into you cygwin folder about this files read site http://win6.jp/Cygwin/
in libevent http.c file add line ---> #define EAI_SYSTEM 11
now install libevent
./configure
make
make install
I also found this SO thread interesting since the Libevent devs were commenting.
Gave up on using cygwin. Tried a reinstalling libevent as per the above and re-running gearman ./configure and the "configure: error: Unable to find libevent" persists.
Took James Butler's advice and am using virtualbox instead. Thanks.

Problem installing sqlite3-ruby on cygwin

I'm getting error while trying to install sqlite3-ruby gem:
gem install sqlite3-ruby-1.3.1.gem
Building native extensions. This could take a while...
ERROR: Error installing sqlite3-ruby-1.3.1.gem:
ERROR: Failed to build gem native extension.
/usr/bin/ruby.exe extconf.rb
Gem files will remain installed in /usr/lib/ruby/gems/1.9.1/gems/sqlite3-ruby-1.3.1 for inspection.
Results logged to /usr/lib/ruby/gems/1.9.1/gems/sqlite3-ruby-1.3.1/ext/sqlite3/gem_make.out
Same using:
gem install sqlite3-ruby-1.3.1
And that worked:
gem install sqlite3-ruby-1.3.1-x86-mswin32-60.gem
However I discovered I had had installed sqlite-ruby-1.2.5
Well my question is how 'gem' is installing these things? Why it can't choose sqlite3-ruby-1.3.1-x86-mswin32-60.gem version automatically. Does 'gem' is aware of running on linux or windows? What is native extension for it and why it is failing to install predownloaded sqlite3-ruby-1.3.1.gem
Thanks in advance
Lots of people seem to be having this issue. I'm surprised this doesn't work out of the box, as I would have guessed cygwin+ruby+sqlite is a supercommon configuration. Anyway. Many people concentrate on sqlite3.h, which is what appears are missing in the error output. However, my problem was that gcc wasn't installed correctly. Apparently gcc can fail to install correctly under cygwin. I fixed that and it was fine. Also, make sure you install libsql3-devel in cygwin.
I've been down this road before. I failed installing Ruby in Windows to work with Cygwin and I failed on Ubuntu.
What you do to save yourself the time and trouble is get a VM running with a Linux image (Fedora seemed to work well) and work with Ruby in that.

Resources