Snippets tagged “windows”
20 snippets use this tag.
- 'pip' is not recognized as an internal or external commandPython
This error message typically occurs when the command prompt or terminal is not able to find the pip executable.
- Android SDK installation doesn't find JDKJava
If the Android SDK installation is unable to find the JDK (Java Development Kit), it could be because the JDK is not installed or is not installed in the default location.
- Change composer global path (Windows)PHP
To change the global path for Composer on Windows, you will need to update the system environment variables.
- Error "Import Error: No module named numpy" on WindowsPython
This error message indicates that the Python interpreter is unable to find the numpy module, which is likely because it is not installed on your system.
- How can I find where Python is installed on Windows?Python
To find where Python is installed on Windows, you can follow these steps:
- How do you enable mod_rewrite on any OS?PHP
To enable mod_rewrite on a PHP server, you will need to make sure that the Apache mod_rewrite module is installed and enabled.
- How to add to the PYTHONPATH in Windows, so it finds my modules/packages?Python
In Windows, you can add to the PYTHONPATH environment variable to make sure that Python can find your modules and packages.
- How to Delete Git Repository Created with InitGit
In this tutorial, you will find out two methods of deleting the git repository created with the git init command for Linux and Windows operating systems.
- How to get a thread and heap dump of a Java process on Windows that's not running in a consoleJava
To get a thread and heap dump of a Java process on Windows that is not running in a console, you can use the jstack and jmap tools that are included with the Java Development Kit (JDK).
- How to open/run .jar file (double-click not working)?Java
To open a .jar file on a Windows system, you can do one of the following:
- How to set java_home on Windows 7?Java
To set the JAVA_HOME environment variable on Windows 7, follow these steps:<br>
- How to set the environment variables for Java in WindowsJava
To set environment variables for Java in Windows:
- Java Error: "Your security settings have blocked a local application from running"Java
If you are getting the error "Your security settings have blocked a local application from running" when trying to run a Java application, it means that your security settings are preventing the application from running.
- javac is not recognized as an internal or external command, operable program or batch file [closed]Java
The error javac is not recognized as an internal or external command, operable program or batch file occurs when you try to run the javac command from the command prompt, but the command prompt cannot find the javac executable.
- javac not working in windows command promptJava
If javac is not working in the Windows command prompt, there could be several reasons for this.
- PHP is not recognized as an internal or external command in command promptPHP
It sounds like you are trying to run the PHP command from the command prompt, but it is not recognized as a valid command.
- PHP: how can I get file creation date?PHP
To get the file creation date in PHP, you can use the filectime() function.
- Running JAR file on WindowsJava
To run a JAR file on Windows, you will need to have the Java Runtime Environment (JRE) installed on your system. You can then run the JAR file by double-clicking it or by using the java command in the command prompt.
- Should I put #! (shebang) in Python scripts, and what form should it take?Python
You should include a shebang (#!) in Python scripts if you want the script to be directly executable from the command line.
- Where to find composer's global packages?PHP
Composer stores global packages in the "vendor/bin" directory within your system's home directory.