#New to Warp and Coding
9 messages · Page 1 of 1 (latest)
Hi @dry prism. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
Hmm, I don't know enough to give you a confident answer yet. The knowledge sources provided do not contain specific information on how to create a Python coding environment within Warp or how to import numpy and pandas. However, Warp is a terminal, so you should be able to run Python and its libraries like you would in any other terminal, provided they are installed on your system.
For more specific guidance, I recommend checking out the official Warp documentation or reaching out to their support team. Here is the link to their contact page (https://docs.warp.dev/help/sending-us-feedback#sending-warp-feedback).
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
Sorry @dry prism, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist:
Perhaps try again in 15mins?
@dry prism well because warp is just a terminal your best bet would be to use a program like neovim inside warp
Warp is just a terminal. I would say get neovim but you not only don't understand how a terminal works but are also new to coding, so use an IDE like visual studio code for now...
If you are just starting I would say keep things basic. Don't add extra cruft to your workflow. Will you be on Mac or Linux?
for a virtual environment, Python comes with it's own abilities...
You can do something like:
python3 -m venv <working_dir>
Then to activate the env you can cd into the dir then run this:
source bin/activate
This should work for the two things you mentioned:
pip install numpy
pip install pandas
Then in your scripts you can:
import numpy as np
import pandas as pd