Skip to content
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

Error in install-nvm.sh #2

Open
EndingCredits opened this issue Dec 3, 2019 · 2 comments
Open

Error in install-nvm.sh #2

EndingCredits opened this issue Dec 3, 2019 · 2 comments

Comments

@EndingCredits
Copy link

Hi,

I'm not a big docker user, but I ran into installation errors due to a problem in install-nvm.sh

export NVM_DIR=./.nvm
. $NVM_DIR/nvm.sh

Gives me an error

Replacing it with the following seems to fix:

export export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion

(Just noticed I have export twice in the NVM_dir line. Don't know if bash ignores the whole line or just the first export....)

I don't know if this is specific to my machine, or due to some update to one of the repos somewhere down the line. Either way, might be useful for anyone else experiencing issues.

Been having some fun watching the network agent play online! I'll hopefully be messing around a bit with the network architecture based on my work on object-based representations, so hopefully I can get back to you with an improved architecture that will also be a bit more flexible.

Best,
Will

@yuzeh
Copy link
Owner

yuzeh commented Feb 27, 2020

Hey! Thanks for the feedback! :) I have unfortunately been incredibly busy and unable to respond.

Odd that your fix works... are you running on a Windows host machine?

@EndingCredits
Copy link
Author

No, Ubuntu.

I suspect that it's a recent update to one of the repos that the container installs from.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants