I'm following the guide over here to install Foundation with Sass. I've got Git, Ruby and Node.js installed. I also believe Bower is installed correctly because when I type bower help into the command line I get information on its command.
When I try to install Foundation with gem install foundation I get this error:
Fetching: foundation-1.0.4.gem (100%)
ERROR: While executing gem ... (Errno::EACCES)
Permission denied - /usr/local/rvm/gems/ruby-1.9.3-p194/gems/foundation-1.0.4/.gitignore
If I then try adding sudo to the beginning of that command it seems to install just fine. Is this the correct way to do this?
Then when I enter foundation new test-project it creates that directory and seems to create those files, but when I go into the "test-project" folder it's empty.
Does anyone have an idea of what I'm doing wrong? Any help would be appreciated.
Thanks in advance!
Ok, so it seems like it with a problem with my git install. I uninstalled git and installed the latest version, and that seemed to do the trick. That folder is now populated with the Foundation files and I can get to work!
Related
I'm trying to install Django using pip on my windows machine, however i keep getting an error in command prompt:
Fatal error in launcher: Unable to create process using '"'
I've been searching around on the internet for solutions, but I cant seem to find any.
Thanks in advance
Make sure you have a virtual env setup. Then activate it and try installing django.
Try use the python installation from Active State http://www.activestate.com/activepython/downloads
I'm a Linux User but I've used python and Django on Windows with ActiveState.
When you install it, the installation create a folder with any utils tools, like pip, easy_install and etc... And the pip of this script works well
Have you tried
python -m pip install django
as advised here
I'm going through the tutorials of http://docs.strongloop.com, and I've reached http://docs.strongloop.com/display/public/LB/Add+a+client+app.
Yet when I execute 'lb-ng ../server/server.js js/lb-services.js' I get an error: Cannot find module 'loopback'.
Any help would be appreciated!
For the new version of loopback you need to install lb-ng command with this line of command
sudo npm install -g loopback-sdk-angular-cli
also try to be in the client folder make sure that you have js directory in client directory then execute these lb-ng commad
lb-ng ../server/server.js js/lb-services.js
it will work
:)
did you npm install your dependencies? check and see if you have a node_modules dir in your project root.
if you're using a newer version of node, try uninstalling node and reinstalling an LTS version.
npm uninstall -g strongloop
npm cache clear
npm install -g strongloop
This is how I fixed this problem for me.
install strong loop and then run lb-ng command this is how i fixed this problem
I'd like to use zurb foundation (SCSS) in conjunction with codekit on my laptop, currently running mavericks but I'm unable to do so once I try to use the compass
I've installed the required gems:
sudo gem install sass
sudo gem install compass
gem install zurb-foundation
sudo gem environment .
I open codekit, open preferences, click sass/scss and select the 'use the sass executable at this path' then proceed to choose 'sass' from the bin folder.
When I try to do the same process for compass, the compass file isn't present in the bin folder.
I've attempted to locate it elsewhere but I've been unable to do so.
Has anyone else encountered this problem/anyone have any idea how to fix it?
Any help would be greatly appreciated.
Thanks.
Try install foundation using Bower and then just include foundation classes into your main styles file. For me it works great with a codekit.
I'm trying to setup django-mediagenerator with Sass, but whenever it tries to compile the .scss files, I get the following error:
ValueError: Failed to execute Sass. Please make sure that you have
installed Sass (http://sass-lang.com) and Compass
(http://compass-style.org). Error was: [Errno 2] No such file or
directory
I've installed both the sass and compass gems...
gem install sass
gem install compass
...And I can verify that they are both installed...
sass --version
compass --version
What exactly have I missed? Does sass need to be installed in a specific location? Do I need to set up some sort of virtual environment like I have with python?
Edit:
If I run which sass I get the following:
/Users/USER_NAME/.rvm/gems/ruby-1.9.3-p194/bin/sass
django-mediagenerator assumes that the sass executable is in the PATH environment variable. In this case, your web server is not running with the same PATH as your normal user environment. You should either add /Users/USER_NAME/.rvm/gems/ruby-1.9.3-p194/bin/ to the PATH where the web server is launched, or install sass and compass in a location which is already included.
So I downloaded the app with easy_install and it worked. I can import registration.
BUT the code installed doesn't match the source code for the project, as seen in github. For example, I'm missing the modules backends.urls and tests. I'm also missing key files like auth_urls. Without these modules, the registration app is failing on me.
Could this be related to my directory structure?
My Ubuntu distribution has placed all my python files in /usr/local/lib/python2.6/dist-packages/
as opposed to /usr/local/lib/python2.6/site-packages/
Otherwise, I'm stumped here.
The easy_install version was really out of date last time I tried.
You'll need to either download the source and run python setup.py install from the extracted directory or checkout from the Git repo and run the same command.
I guess that easy_install installing 0.7 version. But in a github you can see 0.8 alpha