问题标签 [coderunner]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Mac OS X /bin/bash: python: command not found in some IDE
When I compiled test.py
(a very simple Python file) in Sublime Text or CodeRunner, I got the error:/bin/bash: python: command not found
. Then I input python test.py
in the Terminal app, it worked. Later I downloaded Pycharm and compiled the file again, it worked too!
So I assume there is some kind of path setting or something else that was not set correctly. I've searched for quite a long time on the internet but no use. Please help or try to give some ideas how to solve the problem.
Here are some details:
I've tried inserting
#! /usr/bin/python
at the top oftest.py
file but no useThe output of
echo "$PATH"
in Terminal is/usr/local/sbin:/Library/Frameworks/Python.framework/Versions/3.5/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/Users/chenyang/Downloads/android-sdk-macosx/platform-tools
I've found several versions of Python in my macbook :2.6, 2.7, 3.2, 3.3, 3.5. Under the folder
/System/Library/Frameworks/Python.framework/Versions
I found 2.6, 2.7. Under the folder/Library/Frameworks/Python.framework/Versions
I found 3.2, 3,3, 3.5.
I've solved the problem myself and post the answer below
python - coderunner2中python的utf-8错误
最近,我正在尝试 CodeRunner(2.2.2 版)。我的 python 是 miniconda2,一个科学的 python。我可以导入 numpy,但我不能导入 pandas。这很棘手!
我尝试了一些解决方案,例如:https ://coderwall.com/p/-k_93g/mac-os-x-valueerror-unknown-locale-utf-8-in-python 。但它没有成功。
错误
c - scanf 阻止程序运行
所以我用coderunner写了这个程序,
问题是程序无法运行。它一直显示这个,然后在一段时间后停止:
删除 scanf 解决了这个问题,我尝试了使用 scanf 的其他程序,它很好。有任何想法吗?
c++ - CodeRunner--不能编译多源c++程序
我对 c++ 编程和一般编程非常陌生。最近我们在课堂上的程序中添加了头文件和其他源文件(实现)。我尝试编写最简单的程序,以确保我了解将多个文件包含到一个程序中的基础知识,但它们无法编译,从而导致出现链接器错误。
即:
当我使用“g++ main.cpp implementation.cpp”在终端中编译时,一切正常。
我的代码:
主文件
头文件.h
实现.cpp
我喜欢 CodeRunner,但这真的让我很沮丧。
谢谢!
python - 在 Coderunner 中运行 Homebrew Python
我在我的 Mac(Mac OS Sierra 10.12.1)上安装了带有 Brew 的 Python 2.7.12 并将我的路径设置为/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
. 一切正常:python --version
在终端给我2.7.12。
对于编码,我安装了 Coderunner2。在Preferences > Advanced我得到完全相同的PATH:截图
但是当我跑步时
#!/usr/local/bin/python
import platform
print platform.python_version()
在 Coderunner 中,它给了我2.7.10。
我在这里想念什么?为什么 Coderunner 不使用 Python 2.7.12?
c++ - 在 CodeRunner 2 应用程序中包含外部库?
我一直使用 Xcode 在 C++ 中编译基于 OpenCV 的代码。Xcode 中的过程非常简单,我只需要提及路径并将必要的 lib 文件添加到项目中即可。有一个名为CodeRunner 2 for macOS 的应用程序。没有关于如何包含外部库以在此应用程序中编译代码的适当文档。是否可以链接 OpenCV 头文件并在 CodeRunner 中编译它们?如果是,有人可以发布步骤吗?
c - 在 CodeRunner 中编译时出错
我最近才开始使用 Code Runner,由于某种原因它不会编译我的 C 程序。
错误如下:
主程序
ftputchar.c
rush.c
代码运行器 v2.3
但是,当我使用 XCode 编译和运行代码时,它工作得非常好。
此外,如果我将所有内容都放入main.c文件,则代码将完美运行并编译。
sql - 无法正确获取 SQL 的预期联合输出
问题:
没有正确订购,并且没有按预期布置代码/或使用约定。
问题:
Union
此处需要使用运算符,为此,在使用的代码的第三行中指定了 find ,并且vendor_id
数量少于最后一行代码中指定的数量。代码需要排序。
使用的代码:
想要得到:
收到(来自 CodeRunner):
使用了未知的 DBMS。表现得像PostgreSQL
和不像mysql
。
c++ - 我可以在 CodeRunner 中制作可展开/可折叠的部分吗?
我使用CodeRunner 2已经有一段时间了,我想知道,为了优化我的工作流程,是否可以在代码中进行类似树视图的划分。换句话说,能够在扩展目前正在使用的内容的同时折叠我没有处理的内容。
如果这是一个卑鄙的问题,我深表歉意,我仍在学习,非常感谢您的帮助。