Vagrant issue with Demo
See original GitHub issueHi there,
Trying to test the demo out to understand how the module all works with ADFS. Coming across an issue running the demo with Vagrant. After doing the instructional step for:
vagrant up web
I’m noticing the following error:
web: ++ pip3 install -e /vagrant
web: /vagrant should either be a path to a local project or a VCS url beginning with svn+, git+, hg+, or bzr+
That then leads to:
web: ++ python3 /vagrant/demo/adfs/manage.py makemigrations polls
web: python3: can't open file '/vagrant/demo/adfs/manage.py': [Errno 2] No such file or directory
web: ++ python3 /vagrant/demo/adfs/manage.py migrate
web: ++ python3 /vagrant/demo/formsbased/manage.py makemigrations polls
web: python3: can't open file '/vagrant/demo/formsbased/manage.py': [Errno 2] No such file or directory
web: ++ python3 /vagrant/demo/formsbased/manage.py migrate
web: python3: can't open file '/vagrant/demo/formsbased/manage.py': [Errno 2] No such file or directory
web: ++ echo '10.0.0.2 adfs.example.com'
Any guidance for how to make the the loaded VM install django-auth-adfs in editable mode as needed to get passed this?
Thanks! Looking forward to testing this out.
Issue Analytics
- State:
- Created 4 years ago
- Comments:8
Top Results From Across the Web
The demo vagrant produces errors upon the first ... - GitHub
It is a common problem that networking isn't setup properly in these boxes. Verify that authentication configurations are also setup properly, ...
Read more >Common Issues - VirtualBox Provider | Vagrant
This page lists some common issues people run into with Vagrant and VirtualBox as well as solutions for those issues.
Read more >Vagrant Tutorial (Demo) - YouTube
In this video, you will see a tutorial / demo of Vagrant and learn the basics of the virtual machines automation through Vagrant....
Read more >Topic: Vagrant Theme X Issues on Demo Content | Themeco ...
Hi, I'm unable to access the Demo Content. I just get a blank page (using HHVM) and I get this error using PHP:...
Read more >Problem during Installation of AtoM demo - error VBoxManage ...
Hello, I have followed your installation manual of AtoM demonstration. The command vagrant init artefactual/atom was successfull. When I launched Vagrant up ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ok, there seems to be an issue with
/vagrant
not being mounted in the debian box I’m using. Change the box todebian/buster64
in the vagrant file and it’ll work.I just started re-visiting my need for this module. Thanks @buzzware that worked for me to move along with the demo.