#New to Warp and Coding

9 messages · Page 1 of 1 (latest)

dry prism
#

Hi I would like to ask how do i create a python coding environment within warp and I cant seem to be able to import numpy and pandas

crimson graniteBOT
#

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?

tribal schooner
#

@dry prism well because warp is just a terminal your best bet would be to use a program like neovim inside warp

mystic torrent
nocturne lava
#

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