Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 months ago.
Improve this question
I am new to Python and I wanted to try coldtype to play with variable fonts (https://coldtype.goodhertz.com/install.html), but when I type ~ $ pwd in terminal i get zsh: permission denied: /Users/myName. I already enabled auto_cd in ~/.zshrc but I still get the same error.
(i have Big Sur macOS)
I'm guessing you copied that from an example. The ~ $ part is just showing you what the prompt might look like. The part you're supposed to type is just pwd.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I am trying to create an folder on vm instance however I am keep getting the error saying the no space .The space storage as follow:
And the error message is :
Can any one help me plz
Your /home directory is full and needs to be cleared. To identify which directory this is, go to /home and identify which files/directories are taking up space.
$ cd /home
$ du -sh *
From here, you should be able to drill down and empty files as required.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I'm trying to set up my command prompt to execute my Python code. I downloaded Python, but it's not showing up in my System Variables. And to add on to that, I don't know how to add System Variables because the buttons are all grayed out:
Am I doing this wrong or am I totally on the wrong track?
More simple solution, download python again from the website and check to install PATH variables.
Edit: A picture I found on google, since I am using ubuntu.
The environment variable for python can be set at installation. If you did not set the environment variable at time of installation, please go to PC properties-> Advanced and change the environment variable.
Please note administrative rights are required to perform this action.
I hope this helps. 🙂
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Hi there I have a router with OpenWrt and to enable a Startupscript, I first have to create the script.
I needt to create it in /etc/init.d/
The script is called swapon. So when I enter /etc/init.d/swapon I enter VI mode and type the script
Then I exit editing mode and type :w to save
Then it says 'error no such file or directory'
So how to create this script and let it save?
Please help.
You need to be root to edit things in /etc/. Try the following:
Make sure sudo is installed
Edit the file using sudo vi /etc/init.d/swapon
If it still complains, create the file first using sudo touch /etc/init.d/swapon
Finally, make sure the directory exists - if not, use sudo mkdir /etc/init.d
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
I'm trying to install Jython 2.7 to use with RobotFramework. I've downloaded all three of the jar files from http://www.jython.org/downloads.html and yet none of them actually install Jython!
I've tried running them from the command line (where a java server is opened) and just opening with java which does nothing. What am I doing wrong? I don't think that the downloads would be hosted if they didn't work.. Could it be that my other installs are affecting it?
Edit: My end goal is to use Jython with RobotFramework to run my test cases in Java
Thanks in advance
Those jars are jython. Run java -jar <jarfile> and you'll be in the jython command line. There is nothing else to install.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'm following a Flask tutorial, in which I created a virtual environment to run the application.
To run the file, it asks me to run this command:
./run.py
as opposed to:
python run.py
What does the ./ do exactly and why is it necessary?
It is used because the current directory is not in $PATH. And the reason why it is not in the current directory on that list is security.
So in simple terms you can say that the ./ says 'search in the current directory for my script rather than searching at all the directories specified in $PATH'.