AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / user-498971

Mainland's questions

Martin Hope
Mainland
Asked: 2023-04-05 02:10:05 +0800 CST

刚刚安装的 Ubuntu 22.04 和 PyCharm 上没有名为 Pandas 的模块

  • 5

我假设 Ubuntu 拥有 Python 所需的所有软件包。我的意思是 Python3。我安装了 PyCharm。我刚刚运行了这个import pandas as pd,得到了no module found错误。我很惊讶。这是否意味着我必须从头开始安装所有软件包?如果是这样,如何安装它们?

更新:

在此处输入图像描述

linux
  • 1 个回答
  • 27 Views
Martin Hope
Mainland
Asked: 2022-03-12 21:19:44 +0800 CST

WSL 制作文件的多个副本

  • -1

我想制作一个文件的多个副本。我找到了一个现成的解决方案并尝试了。令人惊讶的是它没有工作。

代码:

for i in {1,2,3,4}; do cp MainFile.asy 'CopyFile_$i.asy'; done

当前输出:文件夹位置

MainFile.asy
CopyFile_$i.asy

我很惊讶我哪里出错了?更多信息:尝试1: 在此处输入图像描述

Attempt2:从下面接受的答案,它工作 在此处输入图像描述

Attemp3:从下面的答案,它没有工作 在此处输入图像描述

command-line windows-subsystem-for-linux
  • 1 个回答
  • 50 Views
Martin Hope
Mainland
Asked: 2021-10-29 17:11:41 +0800 CST

从文本文件中提取产品、编号和数量

  • 0

我的文本文件不正确,其中包含产品名称、网站位置和数量。现在我只想准备产品名称、编号(从 URL 中提取)和数量。

输入文件:

rawfile.txt

Component name  Link    Quantity
Ba Test Con - Red   https://kr.element14.com/multicomp/a-1-126-n-r/banana-plug-16a-4mm-cable-red/dp/1698969 25
Ban Te Con - Black  https://kr.element14.com/multicomp/a-1-126-n-b/plug-16a-4mm-cable-black/dp/1698970  25
Ban Te Con - Black  https://kr.element14.com/hirschmann-testmeasurement/930103700/socket-4mm-black-5pk-mls/dp/1854599   15

预期输出:

Ba Test Con - Red   1698969 25
Ban Te Con - Black  1698970 25
Ban Te Con - Black  1854599 15

我的代码:

For product name:
# extract product name
grep '.*?(?=https://)' rawfile.txt

# extract product number
grep -Po '\b[0-9]{6,7}\t\b' rawfile.txt

# extract quanity
grep -Po '\t[0-9]{1,3}' rawfile.txt

# Now combining the last two functions into one ; this works
# grep -Po '(number argument)(quantity argument)' rawfile.txt
grep -Po '(\b[0-9]{6,7}\t\b)(\t[0-9]{1,3})' rawfile.txt
1698969 25
1698970 25
1854599 15
# Now combining the three functions into one and producing an output text file; this works
# grep -Po '(product name argument)(number argument)(quantity argument)' rawfile.txt
grep -Po '(.*?(?=https://))(\b[0-9]{6,7}\t\b)(\t[0-9]{1,3})' rawfile.txt

目前的输出:

>> grep -Po '(.*?(?=https://))(\b[0-9]{6,7}\t\b)(\t[0-9]{1,3})' rawfile.txt
>>                      # no output
grep command-line
  • 1 个回答
  • 40 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    模块 i915 可能缺少固件 /lib/firmware/i915/*

    • 3 个回答
  • Marko Smith

    无法获取 jessie backports 存储库

    • 4 个回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    user12345 无法获取 jessie backports 存储库 2019-03-27 04:39:28 +0800 CST
  • Martin Hope
    Carl 为什么大多数 systemd 示例都包含 WantedBy=multi-user.target? 2019-03-15 11:49:25 +0800 CST
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve