Follow the instructions found on Scoop's website, or run the following commmands:
iwr -useb get.scoop.sh | iex
Install nim with
scoop install nim
Copy the libraries found in the project's libs/raylib/windows
directory to C:\Windows\System32
.
Follow the install instructions found on choosenim's repo, or run the following commands:
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
You will need to update your path in your .bashrc
:
export PATH=~/.nimble/bin:$PATH
Install nim with
choosenim stable
Install raylib with
brew install raylib
Follow the install instructions found on choosenim's repo, or run the following commands:
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
You will need to update your path in your .bashrc
:
export PATH=~/.nimble/bin:$PATH
Install nim with
choosenim stable
Either copy the libraylib.so
file from libs/raylib/linux
into /usr/local/lib
, or follow the install instructions found on raylib's repo wiki to build from source and install like so:
cd /tmp
git clone https://github.com/raysan5/raylib.git raylib
cd raylib/src/
make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED
sudo make install RAYLIB_LIBTYPE=SHARED