Closed samgdotson closed 3 years ago
I attempted installing plutus on a fresh installation of Ubuntu 20.04 and ran into two obstacles:
plutus
install.packages('devtools')
sudo apt install build-essential libcurl4-gnutls-dev libxml2-dev libssl-dev
install.packages('JGCRI/plutus')
xml2
XML
sudo apt-get install libxml2-dev
I'm not sure why I had to install libxml2-dev twice, but I was able to install plutus after that.
libxml2-dev
This issue can be closed when:
README.md
Hi @samgdotson , thank you for finding out the issues of installing plutus on Linux. I updated README to include instructions on installing additional libraries on Linux.
Thanks!
I attempted installing
plutus
on a fresh installation of Ubuntu 20.04 and ran into two obstacles:install.packages('devtools')
failed because it required additional libraries. I resolved the issue usinginstall.packages('JGCRI/plutus')
failed because it could not findxml2
(i.e. theXML
dependency was failing). I resolved this by usingI'm not sure why I had to install
libxml2-dev
twice, but I was able to install plutus after that.This issue can be closed when:
README.md
file includes additional guidance for linux users.