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.
Related
Closed. This question is not about programming or software development. 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 days ago.
Improve this question
I want to backdoor myself for fun, I have learned how to use backdoor-factory tool in Kali Linux. But when I try to backdooring file, tool says "ELF binary not supported". I have no idea why this happening. I even asked that problem from chatGPT. I need human knowledge. I try to write C++ and python code and I made them PE (Portable Executable) but backdoor tool says "ELF binary not supproted". I have latest backdoor-factory tool. Can someone help me?
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
Guys when I installed wxpython by this pip install wxpython when I back to import wx in python file in VS Code there is no options menu for the module oppsite of already installed modules come with python like :
but when I want to show this menu in wxpython i don't have it?? :
Help me
any Help will be in the heart ♥
In VSCode, the prompt function of automatic completion is provided by the Python extension and language service, and the content of the code prompt is different when using different language services. The following is the situation when I use three different Python language services:
"python.languageServer":"Pylance", (in "settings.json" file)
"python.languageServer":"Microsoft",
"python.languageServer":"Jedi",
It is recommended that you try to reload VSCode (F1, Developer: Reload Window) and wait for the python language service to load, then type the code to use the code hint function to get a better use effect.
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 have written the following code to open a particular site.
import webbrowser
webbrowser.open('https://stackoverflow.com/')
I want to modify the code to ping the website twice a day without being using an always running code in the background (maybe with an infinite loop).
I'm using a Windows 10 system. I don't have root access.
I have done a little research and was unable to find anything satisfactory.
Thanks in advance.
You could use github actions - there is a guide here
LINUX:
use Crontab or place your script in /etc/rc.local.
WINDOWS:
Use Task scheduler or use AT command similar to crontab in linux.
on Windows you can use Task Scheduler
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 4 years ago.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
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.
Improve this question
I am working through a book to learn python on version 2.7. I need to download homebrew as part of a project in the book. As required, from homebrew's website, I paste the following in terminal...
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
...but I get the following error:
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:443
I have been researching, trying to find answers to this for a while now. From what I have read, it seems my problem is I can not connect to raw.gihubusercontent.com. To check, when I type that url into my browser, it says:
This site can’t be reached
raw.githubusercontent.com unexpectedly closed the connection.
From my research, it seems like I need to download a proxy, as that is what the following link implied: link 1. But it provides info on how to do it when working behind a proxy, from what I understand.
According to this website I am not behind a proxy, as some threads suggested this problem could stem from. So, how do I fix this problem and install homebrew? I am not the most computer-savvy person, so if I am missing information here, please let me know, I will be checking this thread around the clock. THANK YOU IN ADVANCE!!! :)
If it matters: I am on macOS HighSierra version 10.13.2, and XCode is fully updated.
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. 🙂